home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / quikmenu.arc / QM.HLP < prev    next >
Text File  |  1990-12-04  |  25KB  |  612 lines

  1.  
  2. QUIKMENU USERS GUIDE                               (version 1.05)
  3. --------------------
  4.  
  5. Located at the top of the screen are several command buttons used
  6. to control various aspects of QuikMenu. To activate a command
  7. button, either click the button with a mouse or hold down the ALT
  8. key and press the underlined letter of the desired command.
  9.  
  10. As you have no doubt already discovered, help can be obtained by
  11. pressing the F1 function key. To exit the help screen, press the
  12. ESC key or select the Done command button.
  13.  
  14. The following is a description of the command buttons:
  15.  
  16. Modify    Allows you to make changes to the menu, such as adding
  17.           programs, setting passwords, changing page titles,
  18.           background color, etc.
  19.  
  20. Page      Displays a list box showing all 20 page titles. Selecting
  21.           a page from the box will display that page on the screen.
  22.           You can also create page buttons to move between specific
  23.           pages.
  24.  
  25. DOS       Allows you to temporarily leave QuikMenu to perform DOS
  26.           operations.
  27.  
  28. Log       Allows you to display, sort and print a report of program
  29.           usage.
  30.  
  31. Exit      Leaves the QuikMenu environment completely.
  32.  
  33. Help      Displays this screen. Use the PAGE DOWN and PAGE UP keys
  34.           to view the help or select the Print command to send the
  35.           file to your printer.
  36.  
  37.  
  38. MODIFYING THE MENU
  39. ------------------
  40.  
  41. The Modify Command is used to add, edit, copy, move or delete a
  42. page or program button. In this mode, you may also change page
  43. titles and the initial menu setup.
  44.  
  45. The Modify command can be Password protected. (See Setup below.)
  46.  
  47.  
  48. ADDING NEW ITEMS TO YOUR MENU
  49. -----------------------------
  50.  
  51. The Add command allows you to add new buttons to your menu. Once
  52. the Add command button is selected, you will be asked which type of
  53. button you want to create: Software Button or Page Button.
  54.  
  55.  
  56. ADDING SOFTWARE BUTTONS
  57. -----------------------
  58.  
  59. Software Buttons allow you to run programs, format disks, backup
  60. directories and so on. If you select Software Button from the Add
  61. dialog box, you will see a screen with the following options: 
  62.  
  63. Speed Key      This is the key on your keyboard that will be used
  64.                to activate the Software Button. Valid choices are
  65.                letters A through Z and numbers 0 through 9.
  66.  
  67. Name           This is the text that will be displayed inside the
  68.                Software Button for reference - usually the name of
  69.                the program that the button will activate.
  70.  
  71. Location       This is the drive and directory where the program
  72.                or DOS option is located. (See List Programs
  73.                below.)
  74.  
  75. Command        This is the command that DOS uses to run the
  76.                program or DOS option. For example, if you normally
  77.                load your word processor by typing WP at the DOS
  78.                prompt (C:\), then enter WP here. (See List
  79.                Programs below.)
  80.  
  81.                If you want to automatically load a document, macro
  82.                or some other file with the program, type the
  83.                file's name at the end of the command line. For
  84.                example:
  85.  
  86.                WP C:\FILES\MEMO.LTR
  87.  
  88.                You may also include any command line options,
  89.                parameters or switches required to make the program
  90.                work.
  91.  
  92.                There are a number of options that can be added to
  93.                the command line that make QuikMenu very powerful.
  94.  
  95.                Placing a pair of [] brackets on the command line
  96.                with a question between them will prompt you
  97.                whenever the item is activated. For example, a
  98.                command like:
  99.  
  100.                FORMAT [Which Drive?]
  101.  
  102.                will prompt you with the question "Which Drive?"
  103.                each time you activate the Format button. Your
  104.                response, if any, is then passed along to the
  105.                FORMAT program.
  106.  
  107.                You can even place multiple questions on the same
  108.                command line. For example:
  109.  
  110.                COPY [Source File?] [Destination?]
  111.  
  112.                You can also have the button display a list of
  113.                files to choose from simply by putting an equal
  114.                sign (=) inside the [] brackets. For example, a
  115.                command like:
  116.  
  117.                WP [Which File?=C:\FILES\*.DOC]
  118.  
  119.                allows you to choose from a list of files in the
  120.                C:\FILES directory that have the extension .DOC.
  121.                The *.DOC is a standard directory mask used by DOS
  122.                to display only certain types of files. See your
  123.                DOS manual for more information about masks.
  124.  
  125.                By using two equal signs (==) instead of one, you
  126.                can search for files across an entire drive. For
  127.                example, a command like:
  128.  
  129.                WP [Which File?==C:\*.DOC]
  130.  
  131.                will find every file with the .DOC extension on C:
  132.                drive, regardless of which directory it's in.
  133.  
  134.                If you use the equal sign (=) or double equal sign
  135.                (==) without a mask, the List Files box will
  136.                display only executable program files (*.BAT, *.COM
  137.                and *.EXE). For example:
  138.  
  139.                [Select a Program=]
  140.  
  141.                You may also combine the above examples and even
  142.                place questions within questions. For example:
  143.  
  144.                WP [Select a File=[Type of File?]]
  145.  
  146.                There is also an option you can use on the command
  147.                line for viewing ASCII text files. For example, to
  148.                view your AUTOEXEC.BAT file, use the command:
  149.  
  150.                @VIEW=C:\AUTOEXEC.BAT
  151.  
  152.                Another command line option built into QuikMenu
  153.                allows you to create and edit ASCII text files. For
  154.                example, to edit your CONFIG.SYS file, use the
  155.                command:
  156.  
  157.                @EDIT=C:\CONFIG.SYS
  158.  
  159.                For more information about QuikMenu's text editor
  160.                see Editor below.
  161.  
  162.                You can even use the @VIEW and @EDIT options with
  163.                other command line functions. For example:
  164.  
  165.                @VIEW=[View what?=C:\*.*]
  166.  
  167. List Programs  This option is used to locate a program on your
  168.                hard drive and place the information in the
  169.                Location and Command fields.
  170.  
  171.                Drive and directory names are enclosed within
  172.                brackets ([]) to make them easily distinguishable
  173.                from files. Selecting a directory, such as [WP51],
  174.                displays a list of all program files within that
  175.                directory. Selecting the parent directory, [..],
  176.                moves up one level in the directory tree while the
  177.                [\] symbol takes you all the way back to the root
  178.                directory of the current drive.
  179.  
  180.                The find option allows you to change what type of
  181.                files will be displayed in the List Programs
  182.                window. You may use any standard DOS file name
  183.                specifications; for example, the wild card options
  184.                * and ?, parts of file names, extensions and even
  185.                full file names.
  186.                
  187.                Select the Search Entire Drive option to find files
  188.                across an entire drive.
  189.  
  190. Password       This option allows you to protect a Software Button
  191.                from being activated and/or modified by
  192.                unauthorized users.
  193.  
  194. Options        This option allows you to select the fill, text and
  195.                border colors for the Software Button. You can also
  196.                change the button's font style and size.
  197.  
  198. Pause          Select this option if you want the program to pause
  199.                after it's finished running and prompt you with a
  200.                "Strike any key when ready..." message.
  201.  
  202. Ask For File   This option inserts a question ([Select a
  203.                File=*.*]) into the command line requesting
  204.                QuikMenu to display a list of files whenever this
  205.                button is activated.
  206.  
  207. Editor         This option allows you to create or modify DOS
  208.                batch files. Selecting this option starts
  209.                QuikMenu's text editor and automatically loads any
  210.                batch file found at the beginning of the command
  211.                line. If the command line is empty or does not
  212.                contain a file name, then the editor is started with
  213.                a blank screen ready for text entry. If the file on
  214.                the command line does not already exist, you will
  215.                be asked if you want to create it. File size is
  216.                limited only by the amount of available RAM.
  217.  
  218.                Editor commands include:
  219.  
  220.                Key                 Action
  221.                ------------------------------------------------
  222.                UP ARROW            Up one line
  223.                DOWN ARROW          Down one line
  224.                LEFT ARROW          Left one character
  225.                RIGHT ARROW         Right one character
  226.                PGUP                Up one screen
  227.                PGDN                Down one screen
  228.                HOME                Beginning of line
  229.                END                 End of line
  230.                CTRL + HOME         Top of file
  231.                CTRL + END          Bottom of file
  232.                TAB                 Insert 5 spaces
  233.                INSERT              Toggle insert/overwrite
  234.                ENTER               Insert a line (insert mode)
  235.                CTRL + T            Erase current line
  236.                CTRL + Y            Delete line
  237.                DEL                 Delete right
  238.                BACKSPACE           Delete left
  239.                ALT + S             Save and continue editing
  240.                ESC, ALT + D        Save and exit
  241.  
  242.                After you have completed your modifications, choose
  243.                the Done command from the top of the screen. If the
  244.                file already exists, you will be asked if you want
  245.                to replace the old version or save the changes under
  246.                a new name. NOTE: The Editor does NOT create backup
  247.                files.
  248.  
  249.                You can also use the editor to modify other ASCII
  250.                text files (see Command above).
  251.  
  252.  
  253. ADDING PAGE BUTTONS
  254. -------------------
  255.  
  256. Page Buttons are used to move between pages within the menu. For
  257. example, page one might contain a button labeled "Games" which is
  258. linked to page five. Page five might contain several items related
  259. to game software as well as a "Go Back" button for returning to
  260. page one.
  261.  
  262. If you select Page Button from the Add dialog box, you will see a
  263. screen with the following options:
  264.  
  265. Speed Key      This is the key on your keyboard that will be used
  266.                to activate the Page Button. Valid choices are
  267.                letters A through Z and numbers 0 through 9.
  268.  
  269. Name           This is the text that will be displayed inside the
  270.                Page Button for reference - usually a description
  271.                of the contents of the page the button is linked
  272.                to.
  273.  
  274. Link to...     In this field, type the number of the page you want
  275.                to link this button to. Valid page numbers are 1 to
  276.                20. (See List Pages below.)
  277.  
  278. List Pages     This option serves as an alternative method for
  279.                filling in the Name and Link fields above.
  280.                Selecting this option displays a dialog box
  281.                containing a list of page titles for all 20
  282.                QuikMenu pages. Use the UP and DOWN arrow keys to
  283.                reach the page you want and press ENTER.
  284.  
  285. Options        This option allows you to select the fill, text and
  286.                border colors for the Page Button. You can also
  287.                change the buttons font style and size.
  288.  
  289.  
  290. EDITING MENU ITEMS
  291. ------------------
  292.  
  293. The Edit option allows you to change the appearance and behavior of
  294. a button. After selecting the Edit command, select the button you
  295. want to change by typing its speed key or clicking it with the
  296. mouse. A dialog box like the one used to create the item will
  297. appear. (See Adding Software and Page Buttons above.)
  298.  
  299.  
  300. COPYING MENU ITEMS
  301. ------------------
  302.  
  303. The Copy command will allow you to make an exact duplicate of an
  304. existing button. Copied buttons can be placed anywhere on the
  305. current page or even moved to another page by pressing the PAGE UP
  306. or PAGE DOWN keys. This is handy when you want to place the same
  307. button on multiple pages. (See Moving Menu Items below.)
  308.  
  309.  
  310. MOVING MENU ITEMS
  311. -----------------
  312.  
  313. The Move command will allow you to change the position of a button.
  314. To move a button, select the Move command from the top of the
  315. screen. Next, select a button by typing its speed key or clicking
  316. it with a mouse. Position the button by using the arrow keys or by
  317. moving the mouse. To move the button to another page, press the
  318. PAGE UP or PAGE DOWN keys until the desired page appears on the
  319. screen. To anchor the button, press ENTER or click the mouse. From
  320. the modify mode, you can also move a button by typing its speed key
  321. or clicking it with a mouse without selecting the Move command.
  322.  
  323.  
  324. SIZING MENU ITEMS
  325. -----------------
  326.  
  327. The Size command allows you to alter the dimensions of a button. 
  328. To size a button, select the Size command from the top of the
  329. screen. Next, select a button by typing its speed key or clicking
  330. it with a mouse. Size the button by using the arrow keys or by
  331. moving the mouse. When the button has reached the desired
  332. proportions, press ENTER or click the mouse. The button cannot be
  333. smaller than the width and height of the text inside it.
  334.  
  335.  
  336. DELETING MENU ITEMS
  337. -------------------
  338.  
  339. Use the Delete command to remove unwanted buttons from your menu.
  340. To delete a button, select the Delete command from the top of the
  341. screen. Next, select a button by typing its speed key or clicking
  342. it with the mouse. You will be asked if you are sure you want to
  343. delete the button. Press ENTER to delete it or ESC to cancel.
  344.  
  345.  
  346. CHANGING PAGE TITLES
  347. --------------------
  348.  
  349. The Title command allows you to assign titles to each of QuikMenu's
  350. 20 pages. Menu titles appear at the top of each page and may
  351. contain up to 40 characters. This allows you to identify your menu
  352. screens with descriptive names like "DOS Commands", "Games",
  353. "Sally's Programs" or whatever.
  354.  
  355. When you choose the Title command, a dialog box will appear with
  356. the title of the current page already displayed. To change the
  357. title, backspace over the existing text and type the new title. You
  358. can also change the title of other pages by pressing the PAGE UP or
  359. PAGE DOWN keys until the desired title appears in the text field.
  360. The number of the affected page is displayed at the top of the
  361. dialog box.
  362.  
  363.  
  364. USING THE SETUP COMMAND
  365. -----------------------
  366.  
  367. The Setup command provides you with the means to personalize many
  368. features of QuikMenu. You can use Setup to change the background
  369. color, set the date and time, change the mouse speed and set
  370. password protection.
  371.  
  372. SCREEN
  373.  
  374. Background     You can change QuikMenu's background color by
  375.                holding down the ALT key and pressing B (ALT-B)
  376.                until the desired color is highlighted. If you have
  377.                a mouse, just click on the color you want.
  378.  
  379. Sound          Sound effects can be turned on or off by pressing
  380.                ALT-S or clicking the sound effects button with a
  381.                mouse. (The option is on when an X appears inside
  382.                the button.)
  383.  
  384. Confirm        Confirmation of applications can be turned on or
  385.                off by pressing ALT-C or clicking the confirm
  386.                applications button with a mouse. Select this
  387.                option to request a confirmation (Yes/No) before
  388.                activating a program.
  389.  
  390. Interface      QuikMenu's 3-D interface can be turned on or off by
  391.                pressing ALT-I or clicking the 3-D button with a
  392.                mouse.
  393.  
  394. Speed Keys     The speed keys can be turned on or off by pressing
  395.                ALT-D or clicking the display button with a mouse.
  396.                This option allows you to hide the speed key
  397.                characters normally displayed in front of the
  398.                button text. 
  399.  
  400. Display Grid   QuikMenu's grid display can be turned on or off by
  401.                pressing ALT-G or clicking the display grid button
  402.                with a mouse.
  403.  
  404. Snap to Grid   The grid snap can be turned on or off by pressing
  405.                ALT-S or clicking the snap to grid button with a
  406.                mouse. This grid is useful when moving and sizing
  407.                buttons.
  408.  
  409. Screen Saver   The Screen Saver option allows you to set the time
  410.                interval for the built-in screen saver utility. The
  411.                screen saver continuously monitors your mouse and
  412.                keyboard. If no activity has occurred for a period
  413.                of time equal to the chosen interval, then the
  414.                QuikMenu screen is replaced by an exploding clock.
  415.                To restore QuikMenu, press any key or move the
  416.                mouse. The screen saver may also be activated by
  417.                pressing the F5 function key. NOTE: The screen
  418.                saver only works while you are in QuikMenu, not in
  419.                other programs.
  420.  
  421. PASSWORD
  422.  
  423. The Password function is used to prevent unauthorized users from
  424. running the DOS Shell, modifying the menu, viewing the Time Log and
  425. leaving QuikMenu. Type your password in the text field and select
  426. the items you want to be protected. Protected items appear with an
  427. X next to them. If you use this feature, be sure to remember your
  428. password. A forgotten password means you will not be able to access
  429. the protected options.
  430.  
  431. TIME LOG
  432.  
  433. The Time Log option allows you to turn the log on or off and
  434. to change the name of the file used to store the log information.
  435. The default name of the log file is QM.LOG. To turn the log on or
  436. off, just hold down the ALT key and press the letter K. If you have
  437. a mouse, just click on the "Keep a time log..." button. 
  438.  
  439. It's a good idea to change the name of the time log periodically -
  440. once a month or once a quarter if you use a variety of programs
  441. each day. The log size is limited only by the space available on
  442. your hard drive. However, the smaller the file, the faster the
  443. searching and sorting will be. (See Log below.)
  444.  
  445. DATE/TIME
  446.  
  447. The system Date/Time can be set by tabbing to each field and
  448. changing the numeric value to match the date and time. AM or PM
  449. can be selected by holding down the Alt key and pressing A or P. If
  450. you have a mouse you can just click on the AM or PM buttons. NOTE:
  451. This function may not work on some XTs since there is no standard
  452. among XT clock cards.
  453.  
  454. MOUSE
  455.  
  456. Use this option to adjust the sensitivity of your mouse. The higher
  457. the setting, the less desk space you'll need to move the mouse
  458. across the screen.
  459.  
  460.  
  461. LEAVING THE MODIFY MODE
  462. -----------------------
  463.  
  464. When you have finished modifying your menu, select the Done command
  465. to save your changes and return to the main mode.
  466.  
  467.  
  468. USING THE TIME LOG
  469. ------------------
  470.  
  471. QuikMenu's Time Log can be a valuable resource for consultants,
  472. secretaries, lawyers or anyone who keeps track of expenses on the
  473. basis of time. The Time Log allows you to view, sort and print
  474. reports based on how long and how often you use your computer.
  475.  
  476. The log keeps track of programs by the names you assign to your
  477. Software Buttons. It may be helpful to keep a separate pages of
  478. Software Buttons for specific projects and give each button a
  479. unique project name. For example, page six could have a "Jones Word
  480. Processor", a "Jones Database" and a "Jones Spreadsheet".
  481.  
  482. If you select the Search command button while in Log a dialog box
  483. with the following options will appear:
  484.  
  485. Report Title   This is the title for the report that will be
  486.                printed at the top of each page.
  487.  
  488. Sort by        Select the Program button to sort log entries
  489.                alphabetically by name. Choose the Date button to
  490.                sort log entries in chronological order.
  491.  
  492. View as        This option controls the level of detail displayed
  493.                in the time log. The Summary option displays each
  494.                log entry only once and shows the total number of
  495.                times each item was used. The Detail option shows
  496.                time in, time out and the total time for each item.
  497.  
  498. Find           Use this option to locate specific programs or
  499.                projects within the time log. For example, typing
  500.                "Word" will find log entries for "WordPerfect",
  501.                "Wordstar" and "Word Processing" - anything that
  502.                begins with "WORD".
  503.  
  504. Start date     If you want to search a specific date range, type
  505.                in the month, day and year in numeric format, ie:
  506.                10-12-1990. Leave this field blank to search from
  507.                the beginning of the file.
  508.  
  509. End date       If you want to search a specific date range, type
  510.                in the month, day and year in numeric format, ie:
  511.                10-22-1990. Leave this field blank to search to the
  512.                end of the file.
  513.  
  514. To turn the Time Log on or off or to change the log file name, see
  515. Setup above. 
  516.  
  517.  
  518. USING QUIKMENU WITH TSR PROGRAMS
  519. --------------------------------
  520.  
  521. This option is for those who like to use those handy Pop-Up
  522. calculators, note pads, outliners, etc. QuikMenu includes a handy
  523. TSR window that allows you to easily access your favorite TSR
  524. utilities.
  525.  
  526. Simply load your TSR's as you normally do, then activate QuikMenu.
  527. From the QuikMenu main or modify screens, press the F3 function
  528. key. Quikmenu's graphical display is replaced by a text-only
  529. window. At this point, input the key combination required to bring
  530. up your TSR. When you're finished, exit your TSR and press ESC to
  531. return to QuikMenu.
  532.  
  533.  
  534. USING QUIKMENU ON A NETWORK
  535. ---------------------------
  536.  
  537. QuikMenu can be used with Local Area Networks. Network users should
  538. start Quikmenu by entering QNET "user-name" at the DOS prompt. For
  539. example:
  540.  
  541. QNET Doris
  542.  
  543. - or -
  544.  
  545. QNET Fred
  546.  
  547. If you don't have a QNET file, try installing QuikMenu again. Be
  548. sure to specify that you're using QuikMenu on a network.
  549.  
  550. Network users may also wish to use the !USER variable on the
  551. command line of Program Buttons. When a button with this variable
  552. is activated, the user's name will be substituted for !USER in the
  553. command line. For example, if each user had their own directory on
  554. the network, you could create a program button that would start a
  555. program and list files from the user's directory. The command might
  556. look like:
  557.  
  558. WP [Files?=F:\!USER\*.*]
  559.  
  560. This variable can be used in any situation that requires the user's
  561. name, ie: custom batch files, etc.
  562.  
  563.  
  564. COMMAND LINE OPTIONS
  565. --------------------
  566.  
  567. You can specify several options when starting QuikMenu. An option
  568. consists of a slash (/) followed by an option letter followed by
  569. information about that option.
  570.  
  571. Video Mode     QuikMenu automatically determines what type of
  572.                monitor you have and loads the appropriate software
  573.                driver. If you have an unusual video card, you may
  574.                want to override the built-in video detection
  575.                routine. The /G allows you to run QuikMenu in a
  576.                variety of different graphics modes depending on
  577.                your hardware.
  578.  
  579.                WARNING: CHOOSING AN INCOMPATIBLE DRIVER MAY CAUSE
  580.                UNEXPECTED RESULTS AND SOME EXTREME CASES DAMAGE TO
  581.                YOUR MONITOR OR VIDEO CARD. DON'T TRY THIS OPTION
  582.                UNLESS YOU KNOW EXACTLY WHAT YOU ARE DOING.
  583.  
  584.                Usage: /Gx   x = one of the commands below
  585.  
  586.                Video Mode          Command
  587.                ---------------------------
  588.                Hercules              7.0
  589.                CGA                   1.4
  590.                MCGA 640x200          2.4
  591.                MCGA 640x480          2.5
  592.                EGA                   3.1
  593.                EGA 64K               4.0
  594.                VGA                   9.2
  595.                AT&T 640x400          8.5
  596.                IBM 8514 640x480      6.0
  597.                IBM 8514 1024x768     6.1
  598.  
  599. Other Menus    This option can be used to create or access other
  600.                QuikMenu (*.MNU) menu files.
  601.  
  602.                Usage: /Mx   x = filename
  603.  
  604.                Example: QM /Mmymenu.mnu
  605.  
  606. Hello Message  The /H option displays a greeting message each time
  607.                QuikMenu is loaded. Possible messages include:
  608.                "Good Morning", "Good Afternoon" and "Good Evening"
  609.                depending on what time of day it is.
  610.  
  611.                Usage: /H
  612.